home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / dftxt_r_.arc / MEMOPAD.TXT < prev    next >
Text File  |  1991-10-02  |  43KB  |  1,333 lines

  1. ; ------------------------ MEMOPAD.TXT ---------------------
  2. ;
  3. ; This is the help text file for the MEMOPAD application. It 
  4. ; includes the help text that a D-Flat application would use 
  5. ; for the user interface.
  6. ;
  7. ; There can be a help window with a helptag name for each
  8. ; command in commands.h, each menu label on the menu bar 
  9. ; as defined in menus.c, and each dialog box name in dialogs.c
  10. ;
  11. ; There can be other help windows as well. Some of them will
  12. ; be displayed as the result of hypertext and definition key 
  13. ; words embedded in the help text of other help windows. Others
  14. ; can be implemented from within an application software system.
  15. ;
  16. ; Following is the format for a help window:
  17. ;
  18. ; ┌── (1st column of each line)
  19. ; 
  20. ; ; anything with a semicolon in the 1st column is a comment
  21. ; <helptag>                 (names the help window)
  22. ; [<<]<helptag>             (names the previous window in chain)
  23. ; [>>]<helptag>             (names the next window in chain)
  24. ; Help Window Title         (displays in window's title bar)
  25. ; Help text follows until next helptag occurs
  26. ; Hypertext reference  [..keyword]<helptag> embedded in text
  27. ; Definition reference [**keyword]<helptag> embedded in text
  28. ; <helptag>                 (names another window)
  29. ;
  30. ; Notes: 
  31. ;   1. A hypertext reference, when selected, causes the 
  32. ;      associated help window named by the <helptag> to 
  33. ;      become the active help window.
  34. ;   2. A definition reference, when selected, displays
  35. ;      a momentary window with the text of the associated
  36. ;      help window named by the <helptag>. The window 
  37. ;      closes when the user releases the Enter key or
  38. ;      mouse button.
  39. ;   3. A definition window has no title.
  40. ;   4. The last window is followed by the <end> helptag.
  41. ;   5. The window's height and width adjust to the text.
  42. ;   6. The [..], [**], and <helptags> do not display and
  43. ;      do not figure in the width of the line in which 
  44. ;      they occur.
  45. ;
  46. ; -----------------------------------------
  47. <Application>
  48. [<<]<MEMOPAD>
  49. [>>]<Menubar>
  50. Application Window
  51. The Application Window is the desktop for the 
  52. application.
  53.  
  54. The Application window contains the application's 
  55. [..Document Windows]<docwindow>. Before you open any documents,
  56. the Application window is empty.
  57.  
  58. The application window has an [..Action Bar]<Menubar> just below
  59. its [..Title Bar]<titlebar> and a [..Status Bar]<statusbar> at the bottom.
  60.  
  61. Note that there might not be a title or status bar
  62. depending on the [..Display]<ID_DISPLAY> option on the [..Options]<Options>
  63. menu.
  64. ; -----------------------------------------
  65. <MEMOPAD>
  66. [>>]<Application>
  67. The MEMOPAD Application
  68. MEMOPAD is a multi-window notepad program that
  69. demonstrates the programmer's [**API]<API> to the D-Flat
  70. Common User Access interface library.
  71. ; -----------------------------------------
  72. <MEMOPADDOC>
  73. [<<]<Application>
  74. The MEMOPAD Document Window
  75. This [..Document Window]<docwindow> is a basic notepad text editor. You can 
  76. have many of these windows open at one time.
  77. ; -----------------------------------------
  78. <docwindow>
  79. Document Window
  80. A Document Window contains the data that you work
  81. on. It displays within the [..Application Window]<Application> and
  82. consists of these parts:
  83.  
  84.   [..Client Area]<client>
  85.   [..Border]<border>
  86.   [..Title Bar]<titlebar>
  87.   [..Status Bar]<statusbar>
  88.   [..Scroll Bars]<scrollbar>
  89.   [..Control Box]<controlbox>
  90.   [..Minimize Box]<minbox>
  91.   [..Maximize Box]<maxbox>
  92.   [..Restore Box]<restorebox>
  93.   [..Resize Box]<sizebox>
  94.  
  95. ; -----------------------------------------
  96. <client>
  97. [<<]<docwindow>
  98. [>>]<border>
  99. Client Area
  100. The Client Area is the space inside the window's
  101. borders where the application's data values are
  102. displayed and manipulated.
  103. ; -----------------------------------------
  104. <border>
  105. [<<]<client>
  106. [>>]<titlebar>
  107. Border
  108. The Border is the frame around a window. When the
  109. window has the focus, the border is a double line.
  110. When a different window has the focus, the border
  111. is a single line.
  112.  
  113. The window's [..Scroll Bars]<scrollbar>, if any, are positioned
  114. in the right and bottom parts of the border.
  115. ; -----------------------------------------
  116. <titlebar>
  117. [<<]<border>
  118. [>>]<statusbar>
  119. Title Bar
  120. The Title Bar is at the top of the window and 
  121. contains the window's title. When the window
  122. has the focus, the title is highlighted. The
  123. Title Bar includes these items as well:
  124.  
  125.   [..Control Box]<controlbox>
  126.   [..Minimize Box]<minbox>
  127.   [..Maximize Box]<maxbox>
  128.   [..Restore Box]<restorebox> 
  129.  
  130. You can move the window with the mouse by clicking
  131. the title bar and dragging the window to its new
  132. location.
  133. ; -----------------------------------------
  134. <statusbar>
  135. [<<]<titlebar>
  136. [>>]<scrollbar>
  137. Status Bar
  138. The Status Bar is at the bottom of the application window.
  139. It displays the time and brief contextual messages about
  140. the menus and other application-dependent features.
  141. ; ----------------------------------------- 
  142. <scrollbar>
  143. [<<]<statusbar>
  144. [>>]<controlbox>
  145. Scroll Bars
  146. You use Scroll Bars to scroll a window's data with the
  147. mouse. A window can have one or two Scroll Bars - one
  148. at the right and one at the bottom parts of the
  149. window's Border. The Scroll Bar at the right scrolls
  150. the document's data up and down.  The Scroll Bar on
  151. the bottom scrolls the window's data right and left.
  152.  
  153. To scroll a window a line at a time, click the arrow
  154. tokens at either end of the Scroll Bar. The Scroll Bar
  155. includes a slider box that indicates the relative
  156. position of the window's display with respect to the
  157. total document. You can page to an approximate position
  158. within the document by clicking inside the Scroll Bar.
  159. You can drag the slider box in either direction to
  160. scroll the document.
  161. ; -----------------------------------------
  162. <controlbox>
  163. [<<]<scrollbar>
  164. [>>]<minbox>
  165. Control Box
  166. The Control Box is indicated by the character (≡) at
  167. the left end of the window's [..Title Bar]<titlebar>. You can
  168. click it to select the System Menu or double click
  169. it to close the window.
  170. ; -----------------------------------------
  171. <minbox>
  172. [<<]<controlbox>
  173. [>>]<maxbox>
  174. Minimize Box
  175. The Minimize Box is the  token at the right 
  176. end of the window's [..Title Bar]<titlebar>.
  177.  
  178. When you click on the Minimize Box, the window
  179. is reduced to an icon at the bottom of the
  180. [..Application Window]<Application>
  181. ; -----------------------------------------
  182. <maxbox>
  183. [<<]<minbox>
  184. [>>]<restorebox>
  185. Maximize Box
  186. The Maximize Box is the  token at the right 
  187. end of the window's [..Title Bar]<titlebar>.
  188.  
  189. When you click on the Maximize Box, the window
  190. grows to occupy the entire [..Client Area]<client> of the
  191. [..Application Window]<Application>
  192. ; -----------------------------------------
  193. <restorebox>
  194. [<<]<maxbox>
  195. [>>]<sizebox>
  196. Restore Box
  197. The Restore Box is the  token character at the right
  198. end of a minimized window's [..Title Bar]<titlebar> and the  token
  199. character at the right end of a maximized window's
  200. Title Bar. You click the Restore Box to restore the
  201. window to the position and size it had before it was
  202. minimized or maximized.
  203. ; -----------------------------------------
  204. <sizebox>
  205. [<<]<restorebox>
  206. Resize Box
  207. The Resize Box is the lower right corner of the
  208. window's border. To change the window's size,
  209. drag the Resize Box. The window's upper left
  210. coordinates remain the same, and the lower right
  211. coordinates change as you drag the mouse around.
  212. ; -----------------------------------------
  213. <Menubar>
  214. [<<]<application>
  215. [>>]<Pulldowns>
  216. The Action Bar
  217. To select the action bar, do one of these:
  218.   1. Press F10
  219.   2. Press and release the Alt key
  220.   3. Press Alt+the letter that is highlighted 
  221.      in a menu's title on the action bar. The 
  222.      selected menu will pull down.
  223.   4. Click the action bar. If you click a 
  224.      pull-down menu selection's title, that 
  225.      menu will pull down.
  226.  
  227. To exit from the action bar and return to the
  228. document or application window, do one of these:
  229.   1. Press Esc
  230.   2. Press and release the Alt key
  231. ; -----------------------------------------
  232. ;
  233. ;  Following are the Help system windows
  234. ;
  235. ; -----------------------------------------
  236. <HelpHelp>
  237. [<<]<Help>
  238. [>>]<ExtHelp>
  239. Help for Help
  240. Getting Into the Help System
  241. ----------------------------
  242. There are three ways to get into the Help system:
  243.  
  244.  1. Execute commands on the [..Help]<Help> menu
  245.  2. Press F1
  246.  3. Press the Help command button on a dialog box.
  247.  
  248. Contextual Help (F1)
  249. --------------------
  250. The F1 key provides contextual help--help for the
  251. part of the application that currently has the
  252. focus. You can press F1 with the action bar selected, 
  253. a pull-down menu displayed, a field on a dialog box
  254. selected, or a document window in focus.
  255.  
  256. The Help Command Button
  257. -----------------------
  258. The Help command button on a dialog box displays
  259. information about the dialog box and its purpose.
  260. The help window that displays when you press F1 with
  261. a dialog box field selected relates to the field
  262. itself.
  263.  
  264. References to Other Help Windows
  265. --------------------------------
  266. A Help window can include a reference to another
  267. help window. That reference is highlighted like
  268. this: 
  269.  
  270.     [..Help]<Help>
  271.  
  272. You can Tab to the highlighted reference and press
  273. the Enter key to select the referenced help window.
  274. You can select it with the mouse by double-clicking
  275. on it.
  276.  
  277. Definitions
  278. -----------
  279. Some references, such as [**function key]<shortcut>, are
  280. definitions of terms. These definitions are
  281. highlighted the same as references. When you select
  282. the definition, a window displays in the upper left
  283. corner of the desktop. The window contains the
  284. definition of the selected term and stays in view
  285. until you release the Enter key or the mouse
  286. button.
  287.  
  288. Command Buttons on the Help Windows
  289. -----------------------------------
  290. Each help window contains these [..command buttons]<cmdbuttons>:
  291.  
  292.   Close  This button closes the help window and
  293.          exits from the help system.
  294.   Back   This button changes to the help window
  295.          that you viewed before the current one.
  296.   Prev   This button changes to the help window
  297.          that logically preceeds the current one.
  298.   Next   This button changes to the help window
  299.          that logically follows the current one.
  300.  
  301. Exiting from the Help System
  302. ----------------------------
  303. You exit from the Help system by closing the current
  304. help window in one of these three ways:
  305.  
  306.   1. Press the Esc key
  307.   2. Use the Close command button on the Help
  308.      window.
  309.   5. Double click the window's [..Control Box]<controlbox>.
  310.   4. Close the help window from its [..System Menu]<sysmenu>.
  311.  
  312. ; -----------------------------------------
  313. <ExtHelp>
  314. [<<]<HelpHelp>
  315. [>>]<KeysHelp>
  316. Extended Help
  317. The MEMOPAD program has few features and procedures
  318. that are not taken directly from the SAA/CUA
  319. interface that F-Flat implements. The [..Log Messages]<ID_LOG>
  320. and [..Display]<ID_DISPLAY> selections on the [..Options]<Options> menu are
  321. unique to MEMOPAD and would not necessarily be in
  322. an application. Some of the Display features would
  323. be useful to a user who is not developing D-Flat
  324. programs. Others, such as the [..Title]<ID_TITLE>, [..Border]<ID_BORDER>,
  325. [..Status Bar]<ID_STATUSBAR>, and [..Texture]<ID_TEXTURE> check boxes on the [..Display]<Display?GA>
  326. dialog box, are to allow a programmer to see how
  327. the screen looks with these features enabled and
  328. disabled. 
  329. ; -----------------------------------------
  330. <KeysHelp>
  331. [<<]<ExtHelp>
  332. [>>]<HelpIndex>
  333. Keys Help
  334. From the Desktop
  335. ----------------
  336.   Alt+Hyphen      Open the desktop's [..SystemMenu]<sysmenu>.
  337.   F10 or Alt      Activate the [..ActionBar]<menubar>.
  338.   Esc             Deactivate the Action Bar.
  339.   Alt+letter      Open the associated [..Pull-down menu]<Pulldowns>.
  340.   Alt+F6          Change focus to another document.
  341.   Alt+X           Exit the application.
  342.  
  343. From a [..Document Window]<docwindow>
  344. ----------------------
  345.   Alt+Spacebar    Open the window's [..System Menu]<sysmenu>
  346.   Alt+S           Save the document to a disk file.
  347.  
  348. Editor Keys
  349. -----------
  350.   Arrow keys      Move the cursor one character.
  351.   Ctrl+arrow      Move the cursor one word.
  352.   Del             Delete character to the right of
  353.                   the cursor. If a [..block]<Block> is marked,
  354.                   delete the block.
  355.   Backspace       Delete character to the left of
  356.                   the cursor. If a block is marked,
  357.                   delete the block.
  358.   Alt+BackSpace   Undo the last block deletion.
  359.   PgUp/PgDn       Scroll forward and back one page.
  360.   Ctrl+PgUp/PgDn  Scroll horizontally one page.
  361.   Home/End        Move the cursor to the beginning
  362.                   and end of the line.
  363.   Ctrl+Home/End   Move the cursor to the beginning
  364.                   and end of the document.
  365.   Alt+P           Form a paragraph from the marked
  366.                   block. If no block is marked, form 
  367.                   a paragraph from the cursor 
  368.                   position to the next blank line.
  369.   Ins             Toggle Insert/Overstrike mode.
  370.   Tab             Tab to the next [..Tab Stop]<TabStops> position.
  371.  
  372. [..Clipboard]<clipboard> Keys
  373. --------------
  374.   Shift+Del       [..Cut]<ID_CUT> the marked text to the
  375.                   Clipboard
  376.   Ctrl+Ins        [..Copy]<ID_COPY> the marked text to the
  377.                   Clipboard.
  378.   Shift+Ins       [..Paste]<ID_PASTE> the contents of the
  379.                   Clipboard into the document.
  380.  
  381. [..Dialog Box]<dialog> Keys
  382. ---------------
  383.   Tab             Move to the next control.
  384.   Shift+Tab       Move to the previous control.
  385.   Enter           Execute the control.
  386.   Esc             Close the Dialog Box with no
  387.                   action.
  388.  
  389. [..Listbox]<listbox> Keys
  390. ------------
  391.   Up/down arrows  Move the selection cursor
  392.   Ctrl+arrows     Select a group of entries.
  393.   Enter           Choose the selected entry
  394.                   or entries.
  395.   Shift+F8        Toggle Add mode.
  396.   Spacebar        In Add mode, select/deselect an  
  397.                   entry.
  398. ; -----------------------------------------
  399. <HelpIndex>
  400. [<<]<KeysHelp>
  401. Index of Help Titles
  402. Select (Tab then Enter or double-click) from these 
  403. titles to view the help screens related to each one.
  404.  
  405.   [..Application Window]<Application>
  406.   [..Action Bar]<Menubar>
  407.   [..Pull-down Menus]<Pulldowns>
  408.     [..The File Menu]<File>
  409.     [..The Edit Menu]<Edit>
  410.     [..The Search Menu]<Search>
  411.     [..The Options Menu]<Options>
  412.     [..The Window Menu]<Window>
  413.     [..The Help Menu]<Help>
  414.   [..Dialog Boxes]<Dialog>
  415.     [..The File Open Dialog Box]<FileOpen>
  416.     [..The Save As Dialog Box]<SaveAs>
  417.     [..The MsgBox Dialog Box]<MsgBox>
  418.     [..The Display Dialog Box]<Display>
  419.     [..The TabStops Dialog Box]<TabStops>
  420.     [..The Windows Dialog Box]<Windows>
  421.     [..The Log Dialog Box]<Log>
  422.   [..The Help System]<Help>
  423.     [..Help for help...]<ID_HELPHELP>
  424.     [..Extended help...]<ID_EXTHELP>
  425.     [..Keys help...]<ID_KEYSHELP>
  426.     [..Help index...]<ID_HELPINDEX>
  427.     [..Reload Help Database]<ID_LOADHELP>
  428.  
  429. ; -----------------------------------------
  430. ;
  431. ;  Following are menu command help windows
  432. ;
  433. ; -----------------------------------------
  434. <ID_NEW>
  435. [<<]<File>
  436. [>>]<ID_OPEN>
  437. The New Command
  438. This command opens a new, untitled document
  439. window. An untitled document is one that has 
  440. not been given a file name. When you use the 
  441. [..Save]<ID_SAVE> or [..Save as]<ID_SAVEAS> command on the File menu the 
  442. document gets a file name.
  443. ; -----------------------------------------
  444. <ID_OPEN>
  445. [<<]<ID_NEW>
  446. [>>]<ID_SAVE>
  447. The Open Command
  448. This command opens an existing document and loads
  449. it into a window. You select the document by filling
  450. in the [..File Open]<FileOpen> dialog box.
  451. ; -----------------------------------------
  452. <ID_SAVE>
  453. [<<]<ID_OPEN>
  454. [>>]<ID_SAVEAS>
  455. The Save Command
  456. This command saves the document in the currently
  457. active document window into a disk file. The file
  458. name is the same as when the file was loaded. If
  459. the window contains an untitled document, this
  460. command works just like the [..Save as]<ID_SAVEAS> command.
  461. ; -----------------------------------------
  462. <ID_SAVEAS>
  463. [<<]<ID_SAVE>
  464. [>>]<ID_DELETEFILE>
  465. The Save As Command
  466. This command allows you to save the document in the
  467. currently active document window under a new file
  468. name. You specify the file's name by filling in the
  469. fields on the [..Save as]<SaveAs> dialog box. 
  470.  
  471. The new file name becomes the title of the
  472. currently active document window where the file is
  473. displayed.
  474. ; -----------------------------------------
  475. <ID_DELETEFILE>
  476. [<<]<ID_SAVEAS>
  477. [>>]<ID_PRINT>
  478. The Delete Command
  479. Use this command to delete the text file displayed
  480. in the active editbox window.
  481. ; -----------------------------------------
  482. <ID_PRINT>
  483. [<<]<ID_DELETEFILE>
  484. [>>]<ID_DOS>
  485. The Print Command
  486. This command prints the document in the
  487. currently-selected document window.
  488. ; -----------------------------------------
  489. <ID_DOS>
  490. [<<]<ID_PRINT>
  491. [>>]<ID_EXIT>
  492. The DOS Command
  493. This command "shells" out to DOS. You return to the
  494. application from DOS by executing the DOS exit
  495. command at the DOS command line. 
  496. ; -----------------------------------------
  497. <ID_EXIT>
  498. [<<]<ID_DOS>
  499. The Exit Command
  500. This command exits to DOS from the application. If
  501. there are any changed documents that you have not
  502. saved, the program will ask if you want to save
  503. them and allow you to do so, one at a time.
  504. ; -----------------------------------------
  505. <ID_UNDO>
  506. [<<]<Edit>
  507. [>>]<ID_CUT>
  508. The Undo Command
  509. This command "undoes" the most recent [..Delete]<ID_DELETETEXT> or
  510. [..Clear]<ID_CLEAR> command. The text that was deleted by one of
  511. these commands is written into the document at the
  512. current cursor location.
  513. ; -----------------------------------------
  514. <ID_CUT>
  515. [<<]<ID_UNDO>
  516. [>>]<ID_COPY>
  517. The Cut Command
  518. This command is active only when the current
  519. document window has a [..marked block]<Block>. The command
  520. deletes the text in the marked block, copies it to
  521. the [..Clipboard]<Clipboard>, and closes up the space in the
  522. document that the text previously occupied.
  523. ; ----------------------------------------- 
  524. <ID_COPY>
  525. [<<]<ID_CUT>
  526. [>>]<ID_PASTE>
  527. The Copy Command
  528. This command is active only when the current
  529. document window has a [..marked block]<Block>. The command
  530. copies the text in the marked block to the 
  531. [..Clipboard]<Clipboard>, and closes up the space in the document 
  532. that the text previously occupied.
  533. ; -----------------------------------------
  534. <ID_PASTE>
  535. [<<]<ID_COPY>
  536. [>>]<ID_CLEAR>
  537. The Paste Command
  538. This command is active only when the [..Clipboard]<Clipboard>
  539. contains text. The command inserts the text from the
  540. Clipboard into the currently active document window
  541. at the current cursor location.
  542. ; -----------------------------------------
  543. <ID_CLEAR>
  544. [<<]<ID_PASTE>
  545. [>>]<ID_DELETETEXT>
  546. The Clear Command
  547. This command is active only when the current
  548. document window has a [..marked block]<Block>. The command
  549. deletes the block of text, leaving empty space in
  550. the document where the text had been.
  551.  
  552. You can undo the text deletion with the
  553. [..Undo]<ID_UNDO> command.
  554. ; -----------------------------------------
  555. <ID_DELETETEXT>
  556. [<<]<ID_CLEAR>
  557. [>>]<ID_PARAGRAPH>
  558. The Delete Command
  559. This command is active only when the current
  560. document window has a [..marked block]<Block>. The command
  561. deletes the block of text, closing the space in the
  562. document where the text had been.
  563.  
  564. You can undo the text deletion with the
  565. [..Undo]<ID_UNDO> command.
  566. ; -----------------------------------------
  567. <ID_PARAGRAPH>
  568. [<<]<ID_DELETETEXT>
  569. The Paragraph Command
  570. This command reforms a paragraph beginning at the
  571. current keyboard cursor position. The end of the
  572. paragraph is the last line preceding the next blank
  573. line.
  574.  
  575. If a [..marked block]<Block> is defined, the
  576. Paragraph command forms a new paragraph from the
  577. block without regard to the cursor position.
  578. ; -----------------------------------------
  579. <ID_SEARCH>
  580. [<<]<Search>
  581. [>>]<ID_REPLACE>
  582. The Search Command
  583. This command opens the [..Search Text]<SearchText> Dialog Box to
  584. allow you to search the text for a
  585. matching string.
  586. ; -----------------------------------------
  587. <ID_REPLACE>
  588. [<<]<ID_SEARCH>
  589. [>>]<ID_SEARCHNEXT>
  590. The Replace Command
  591. This command opens the [..Replace Text]<ReplaceText> Dialog Box to
  592. allow you to search the text for a
  593. matching string and replace it with a 
  594. different text string.
  595. ; -----------------------------------------
  596. <ID_SEARCHNEXT>
  597. [<<]<ID_REPLACE>
  598. The Next Command
  599. This command continues the most recent [..Search]<ID_SEARCH>
  600. command beginning at the current cursor position.
  601. ; -----------------------------------------
  602. <ID_INSERT>
  603. [<<]<Options>
  604. [>>]<ID_WRAP>
  605. The Insert Toggle
  606. This [**toggle]<toggle> command turns the editor's insert mode
  607. on and off. When insert mode is on, the editor
  608. inserts the text that you write. Otherwise each
  609. character typed overwrites the one at the current
  610. cursor position.
  611. ; -----------------------------------------
  612. <ID_WRAP>
  613. [<<]<ID_INSERT>
  614. [>>]<ID_TABS>
  615. The Word Wrap Toggle
  616. This [**toggle]<toggle> command turns the editor's word wrap
  617. feature on and off. When word wrap is on, the editor
  618. will wrap words as you type at the right margin of
  619. the document window. When word wrap is off, the
  620. editor will scroll the display horizontally as you
  621. type beyond the right margin. 
  622. ; -----------------------------------------
  623. <ID_TABS>
  624. [<<]<ID_WRAP>
  625. [>>]<ID_DISPLAY>
  626. The Tabs Command
  627. This command displays the [..Editor Tab Stops]<TabStops> dialog
  628. box so that you can change the editor's tab
  629. settings.
  630. ; -----------------------------------------
  631. <ID_DISPLAY>
  632. [<<]<ID_TABS>
  633. [>>]<ID_LOG>
  634. The Display Command
  635. This command displays the [..Display]<Display?GA> dialog box to
  636. allow you to modify the screen's colors and
  637. configuration.
  638. ; -----------------------------------------
  639. <ID_LOG>
  640. [<<]<ID_DISPLAY>
  641. [>>]<ID_SAVEOPTIONS>
  642. The Log Messages Command
  643. This command is used primarily for debugging. It
  644. opens the [..Log Message]<Log> dialog box to allow the
  645. programmer to select the D-Flat messages to log and
  646. to turn message logging on and off.
  647. ; -----------------------------------------
  648. <ID_SAVEOPTIONS>
  649. [<<]<ID_LOG>
  650. The Save Options Command
  651. This command saves the current options in a
  652. configuration file that the application reads when
  653. it first starts up.
  654. ; -----------------------------------------
  655. <ID_CLOSEALL>
  656. [<<]<Window>
  657. [>>]<ID_WINDOW>
  658. The Close All Command
  659. This command closes all the document windows on the
  660. desktop.
  661. ; -----------------------------------------
  662. <ID_WINDOW>
  663. [<<]<ID_CLOSEALL>
  664. The Open Window List
  665. The [..Window]<Window> menu displays a list of open document
  666. windows. You can select one of them as the current
  667. active window by selecting its title on the Window
  668. menu. When the menu first displays, the active
  669. window has a check mark (√) next to it.
  670. ; -----------------------------------------
  671. <ID_HELPHELP>
  672. [<<]<Help>
  673. [>>]<ID_EXTHELP>
  674. Help for Help
  675. This command describes how to use the Help system.
  676. ; -----------------------------------------
  677. <ID_EXTHELP>
  678. [<<]<ID_HELPHELP>
  679. [>>]<ID_KEYSHELP>
  680. Extended Help
  681. Extended Help displays information about the
  682. application.
  683. ; -----------------------------------------
  684. <ID_KEYSHELP>
  685. [<<]<ID_EXTHELP>
  686. [>>]<ID_HELPINDEX>
  687. Keys Help
  688. This command displays a help window that shows the
  689. keystrokes that you use to operate the application.
  690. ; -----------------------------------------
  691. <ID_HELPINDEX>
  692. [<<]<ID_KEYSHELP>
  693. [>>]<ID_LOADHELP>
  694. Help Index
  695. The Help index lists the subjects covered in the
  696. Help database. You can go directly to a subject from
  697. the index by selecting the subject's name. 
  698. ; -----------------------------------------
  699. <ID_LOADHELP>
  700. [<<]<ID_HELPINDEX>
  701. [>>]<ID_ABOUT>
  702. Reload Help Database
  703. This command allows you to reload the Help
  704. database. It is useful when you use the
  705. Memopad program to modify its Help database.
  706. You can change and save the MEMOPAD.TXT file,
  707. use this command to reload it, then use the
  708. Help system to view the results. Without this
  709. command, your changes would corrupt the
  710. current Memopad's picture of the database
  711. with respect to its pointers.
  712.  
  713. You must delete the MEMOPAD.HLP compressed
  714. help database in order for this program to
  715. load the most recent changes.
  716. ; -----------------------------------------
  717. <ID_ABOUT>
  718. [<<]<ID_LOADHELP>
  719. The About Command
  720. This command displays a message that tells you what
  721. the application is.
  722. ; -----------------------------------------
  723. <ID_FILENAME>
  724. [>>]<ID_FILES>
  725. The Filename Field
  726.  
  727. On the Open File dialog box:
  728.     Enter the name of the file you wish to
  729.     open into a document window, or enter
  730.     the file specification with wild cards
  731.     to display a list of files in the
  732.     [..Files]<ID_FILES> field.
  733.  
  734. On the Save As dialog box:
  735.     Enter the name with which you wish to
  736.     save the file.
  737. ; -----------------------------------------
  738. <ID_FILES>
  739. [<<]<ID_FILENAME>
  740. [>>]<ID_DRIVE>
  741. The Files Field
  742. Select a file from the listbox by using one
  743. of these methods:
  744.  
  745. Keyboard:  Move the selection cursor to
  746.            the file name and press Enter.
  747.  
  748. Mouse:     Double-click the file name.
  749. ; -----------------------------------------
  750. <ID_DRIVE>
  751. [<<]<ID_FILES>
  752. The Directories Field
  753. Use this listbox to select a different
  754. drive or subdirectory. Select a drive or
  755. subdirectory from the listbox by using one
  756. of these methods:
  757.  
  758. Keyboard:  Move the selection cursor to
  759.            the drive or subdirectory and 
  760.            press Enter.
  761.  
  762. Mouse:     Double-click the drive or
  763.            subdirectory.
  764. ; -----------------------------------------
  765. <ID_SEARCHFOR>
  766. [>>]<ID_REPLACEWITH>
  767. The Search For Text Entry Box
  768. Enter the text you want to search for in this
  769. text box. Press Enter or the OK command button
  770. to begin the search. Press Esc to forget it.
  771. Use the [..Match Upper/Lower Case Check Box]<ID_MATCHCASE> to
  772. select whether the search will match only if
  773. the case matches or if the search is insensitive
  774. to the case of the two strings.
  775. ; -----------------------------------------
  776. <ID_REPLACEWITH>
  777. [<<]<ID_SEARCHFOR>
  778. [>>]<ID_MATCHCASE>
  779. The Replace With Text Entry Box
  780. Enter the text string that will replace
  781. the matching text string in the
  782. [..Search For Text Entry Box]<ID_SEARCHFOR>.
  783. ; -----------------------------------------
  784. <ID_MATCHCASE>
  785. [<<]<ID_REPLACEWITH>
  786. The Match Upper/Lower Case Check Box
  787. Use this checkbox to select whether the search 
  788. will match only if the case matches or if the 
  789. search is insensitive to the case of the two 
  790. strings.
  791. ; -----------------------------------------
  792. <ID_WINDOWLIST>
  793. The ID_WINDOWLIST Command
  794.  
  795.      ======== Text needed =========
  796.  
  797. ; -----------------------------------------
  798. <ID_TITLE>
  799. [<<]<Display?GA>
  800. [>>]<ID_BORDER>
  801. The Title Check Box
  802. Select this Check Box to toggle the application
  803. window's title on and off. Without a title, the
  804. window also loses its [..Control Box]<controlbox>.
  805. ; -----------------------------------------
  806. <ID_BORDER>
  807. [<<]<ID_TITLE>
  808. [>>]<ID_STATUSBAR>
  809. The Border Check Box
  810. Select this Check Box to toggle the application
  811. window's border on and off. Without a border, the
  812. window also loses its [..Status Bar]<statusbar>.
  813. ; -----------------------------------------
  814. <ID_STATUSBAR>
  815. [<<]<ID_BORDER>
  816. [>>]<ID_TEXTURE>
  817. The Status Bar Check Box
  818. Select this Check Box to toggle the application
  819. window's [..Status Bar]<statusbar> on and off.
  820. ; -----------------------------------------
  821. <ID_TEXTURE>
  822. [<<]<ID_STATUSBAR>
  823. [>>]<ID_COLOR>
  824. The Texture Check Box
  825. Select this Check Box to toggle the application
  826. window's background texture on and off.
  827. ; -----------------------------------------
  828. <ID_COLOR>
  829. [<<]<ID_TEXTURE>
  830. [>>]<ID_MONO>
  831. The Color Option Button
  832. Select this option for a color display.
  833. ; -----------------------------------------
  834. <ID_MONO>
  835. [<<]<ID_COLOR>
  836. [>>]<ID_REVERSE>
  837. The Mono Option Button
  838. Select this option for a monochrome display.
  839. ; -----------------------------------------
  840. <ID_REVERSE>
  841. [<<]<ID_MONO>
  842. The Reverse Option Button
  843. Select this option for a reverse monochrome
  844. display. You might find that this option
  845. works well with the LCD screens of some laptop
  846. computers, particularly when you turn off the
  847. [..Texture]<ID_TEXTURE> check box.
  848. ; -----------------------------------------
  849. <ID_LOGLIST>
  850. [<<]<Options>
  851. [>>]<ID_LOGGING>
  852. The Messages Listbox
  853. This is a list of D-Flat messages that
  854. you can log when the [..Logging]<ID_LOGGING> checkbox is
  855. selected. The list is a [..Multiple-Selection]<MultiSel>
  856. listbox. 
  857. ; -----------------------------------------
  858. <ID_LOGGING> [<<]<ID_LOGLIST> The Logging
  859. CheckBox This checkbox turns message 
  860. logging on and off. ;
  861. -----------------------------------------
  862. <TEXTBOX> The TEXTBOX Window Class
  863.  
  864.      ======== Text needed =========
  865.  
  866. ; -----------------------------------------
  867. <LISTBOX>
  868. The LISTBOX Window Class
  869.  
  870.      ======== Text needed =========
  871.  
  872. ; -----------------------------------------
  873. <EDITBOX>
  874. The EDITBOX Window Class
  875.  
  876.      ======== Text needed =========
  877.  
  878. ; -----------------------------------------
  879. <Pulldowns>
  880. [<<]<menubar>
  881. [>>]<File>
  882. Pull-down Menus
  883. Pull-down menus contain the commands to operate
  884. the program. Read about the [..Action Bar]<menubar> to see
  885. how to select the pull-down menus. Following
  886. is a list of the pull-down menus.
  887.  
  888.     [..The File Menu]<File>
  889.     [..The Edit Menu]<Edit>
  890.     [..The Search Menu]<Search>
  891.     [..The Options Menu]<Options>
  892.     [..The Window Menu]<Window>
  893.     [..The Help Menu]<Help>
  894.  
  895. The [..System Menu]<sysmenu> is another kind of pull-down menu.
  896. ; -----------------------------------------
  897. <File>
  898. [<<]<Pulldowns>
  899. [>>]<Edit>
  900. The File Menu
  901. The File menu contains commands that
  902. open, save, and print files. The menu
  903. also has the command that exits the
  904. program. Following are the commands
  905. and associated [**function keys]<shortcut>.
  906.  
  907.     [..New]<ID_NEW>
  908.     [..Open]<ID_OPEN>
  909.     [..Save]<ID_SAVE>     (Alt+S)
  910.     [..Save as]<ID_SAVEAS>
  911.     [..Print]<ID_PRINT>
  912.     [..Exit]<ID_EXIT>     (Alt+X or Alt+F4)
  913.  
  914. [**Inactive]<inactive> commands display in a dim font.
  915. ; -----------------------------------------
  916. <Edit>
  917. [<<]<File>
  918. [>>]<Search>
  919. The Edit Menu
  920. The Edit menu contains commands that support
  921. text editing. Following are the commands and 
  922. associated [**function keys]<shortcut>.
  923.  
  924.     [..Undo]<ID_UNDO>          (Alt+BS)
  925.     [..Cut]<ID_CUT>           (Shift+Del)
  926.     [..Copy]<ID_COPY>          (Ctrl+Ins)
  927.     [..Paste]<ID_PASTE>         (Shift+Ins)
  928.     [..Clear]<ID_CLEAR>
  929.     [..Delete]<ID_DELETETEXT>        (Del)
  930.     [..Paragraph]<ID_PARAGRAPH>     (Alt+P)
  931.  
  932. [**Inactive]<inactive> commands display in a dim font.
  933. ; -----------------------------------------
  934. <Search>
  935. [<<]<Edit>
  936. [>>]<Options>
  937. The Search Menu
  938. The Search menu allows you to search the text
  939. for a matching string. The commands are:
  940.  
  941.     [..Search]<ID_SEARCH>
  942.     [..Next]<ID_SEARCHNEXT>    (F3)
  943. ; -----------------------------------------
  944. <Options>
  945. [<<]<Search>
  946. [>>]<Window>
  947. The Options Menu
  948. The Options menu contains commands that let you
  949. control the editor's behavior, the video display
  950. characteristics, and whether to [**log]<logging> messages.
  951. You can save the options in a configuration file.
  952. Following are the commands on the Options menu.
  953.  
  954.     [..Insert]<ID_INSERT>     (Ins)
  955.     [..Word wrap]<ID_WRAP>
  956.     [..Tabs]<ID_TABS>
  957.     [..Display]<ID_DISPLAY>
  958.     [..Log Messages]<ID_LOG>
  959.     [..Save Options]<ID_SAVEOPTIONS>
  960. ; -----------------------------------------
  961. <Window>
  962. [<<]<Options>
  963. [>>]<Help>
  964. The Window Menu
  965. The Window menu has no selections unless the
  966. [..Application window]<Application> has one or more document
  967. windows displayed. When documents are displayed,
  968. the Window menu contains a [..Close All]<ID_CLOSEALL> command
  969. and an entry for the first nine document windows. 
  970. You can select a document window from the Window
  971. menu. If the Application window has more than nine
  972. document windows, the Window menu has the [**More Windows]<MoreWins>
  973. command, which displays the [..Windows]<Windows> dialog box.
  974. ; -----------------------------------------
  975. <Help>
  976. [<<]<Window>
  977. The Help Menu
  978. The Help menu provides information about the 
  979. application and the desktop. The selections are:
  980.  
  981.     [..Help for help...]<ID_HELPHELP>
  982.     [..Extended help...]<ID_EXTHELP>
  983.     [..Keys help...]<ID_KEYSHELP>
  984.     [..Help index...]<ID_HELPINDEX>
  985.     [..About...]<ID_ABOUT>
  986.  
  987. ; -----------------------------------------
  988. <sysmenu>
  989. [<<]<Pulldowns>
  990. [>>]<ID_SYSRESTORE>
  991. The System Menu
  992. Most windows have a system menu. If the window has a
  993. System Menu, the window will have a [..Control Box]<controlbox>. You
  994. can select the System Menu by clicking the control
  995. box or by pressing Alt+Spacebar for the application
  996. window's system menu and Alt+Hyphen for the system
  997. menu of other windows. 
  998.  
  999. Following are the commands on the System Menu:
  1000.  
  1001.     [..Restore]<ID_SYSRESTORE>
  1002.     [..Move]<ID_SYSMOVE>
  1003.     [..Size]<ID_SYSSIZE>
  1004.     [..Minimize]<ID_SYSMINIMIZE>
  1005.     [..Maximize]<ID_SYSMAXIMIZE>
  1006.     [..Close]<ID_SYSCLOSE>
  1007.  
  1008. ; -----------------------------------------
  1009. <ID_SYSRESTORE>
  1010. [<<]<sysmenu>
  1011. [>>]<ID_SYSMOVE>
  1012. The Restore Command on the System Menu
  1013. This command restores a [..Minimized]<ID_SYSMINIMIZE> or [..Maximized]<ID_SYSMAXIMIZE>
  1014. window to the size and position it had before it
  1015. was minimized or maximized.
  1016.  
  1017. You can also restore a minimized or maximized 
  1018. window by clicking its [..Restore Box]<restorebox>.
  1019. ; -----------------------------------------
  1020. <ID_SYSMOVE>
  1021. [<<]<ID_SYSRESTORE>
  1022. [>>]<ID_SYSSIZE>
  1023. The Move Command on the System Menu
  1024. The Move command lets you move a window with the
  1025. keyboard. Select the command from the System Menu. A
  1026. movable window frame comes into view over the
  1027. window's border. Use the up, down, left, and right
  1028. arrow keys to move the frame to the new window
  1029. position. Press the Enter key when the movable frame
  1030. is where you want to move the window. Press the Esc
  1031. key to ignore the movement.
  1032.  
  1033. You can move a window with the mouse by clicking on
  1034. the window's [..Title Bar]<titlebar> and dragging the window to
  1035. the new location. 
  1036. ; -----------------------------------------
  1037. <ID_SYSSIZE>
  1038. [<<]<ID_SYSMOVE>
  1039. [>>]<ID_SYSMINIMIZE>
  1040. The Size Command on the System Menu
  1041. The Size command lets you re-size a window with the
  1042. keyboard. Select the command from the System Menu. 
  1043. A sizeable window frame comes into view over the
  1044. window's border. Use the up, down, left, and right
  1045. arrow keys to change the frame to the new window
  1046. size. Press the Enter key when the sizeable frame
  1047. is the size you want for the window. Press the Esc
  1048. key to ignore the size change.
  1049.  
  1050. You can re-size a window with the mouse by clicking
  1051. on the window border's [..Resize Box]<sizebox> and dragging the 
  1052. window to the new size.
  1053. ; -----------------------------------------
  1054. <ID_SYSMINIMIZE>
  1055. [<<]<ID_SYSSIZE>
  1056. [>>]<ID_SYSMAXIMIZE>
  1057. The Minimize Command on the System Menu
  1058. This command minimizes the window to an icon at the
  1059. bottom of the application window.
  1060.  
  1061. You can minimize a window with the mouse by clicking
  1062. on the window's [..Minimize Box]<minbox>.
  1063.  
  1064. The [..Restore]<ID_SYSRESTORE> command restores a minimized window to
  1065. the size and position it had before it was
  1066. minimized.
  1067. ; -----------------------------------------
  1068. <ID_SYSMAXIMIZE>
  1069. [<<]<ID_SYSMINIMIZE>
  1070. [>>]<ID_SYSCLOSE>
  1071. The Maximize Command on the System Menu
  1072. This command maximizes the window to occupy all of
  1073. the application window's client area.
  1074.  
  1075. You can maximize a window with the mouse by clicking
  1076. on the window's [..Maximize Box]<maxbox>.
  1077.  
  1078. The [..Restore]<ID_SYSRESTORE> command restores a maximized window to
  1079. the size and position it had before it was
  1080. maximized.
  1081. ; -----------------------------------------
  1082. <ID_SYSCLOSE>
  1083. [<<]<ID_SYSMAXIMIZE>
  1084. The Close Command on the System Menu
  1085. This command closes the window with which the System
  1086. Menu is associated.
  1087.  
  1088. You can also close the window by double-clicking the
  1089. [..Control Box]<controlbox> or pressing Ctrl+F4.
  1090. ; -----------------------------------------
  1091. ;
  1092. ;  Following are dialog box help windows
  1093. ;
  1094. ; -----------------------------------------
  1095. <Dialog>
  1096. [>>]<cmdbuttons>
  1097. Dialog Boxes
  1098. Dialog Boxes allow you to enter data into the
  1099. application. A Dialog Box consists of these
  1100. controls:
  1101.  
  1102.     [..Command Buttons]<cmdbuttons>
  1103.     [..Check Boxes]<checkboxes>
  1104.     [..Option Buttons]<optbuttons>
  1105.     [..Edit Boxes]<editboxes>
  1106.     [..List Boxes]<listboxes>
  1107.     [..Multiple-Selection Listboxes]<MultiSel>
  1108.  
  1109. Move from control to control by using the Tab key
  1110. or by pressing Alt+ the highlighted character in
  1111. the control's label. Execute a control by pressing
  1112. the Enter key. 
  1113.  
  1114. Exit the Dialog Box and accept its data entries by
  1115. executing the OK command button. 
  1116.  
  1117. Exit the Dialog Box and reject its data entries by
  1118. executing the Cancel command button. 
  1119. ; -----------------------------------------
  1120. <cmdbuttons>
  1121. [<<]<Dialog>
  1122. [>>]<checkboxes>
  1123. Command Buttons
  1124. Select a command button to execute its
  1125. command by using one of these procedures:
  1126.  
  1127.   1. Click the button.
  1128.   2. Press Alt+ the shortcut key.
  1129.   3. Tab to the button and press Enter.
  1130. ; -----------------------------------------
  1131. <checkboxes>
  1132. [<<]<cmdbuttons>
  1133. [>>]<optbuttons>
  1134. Check Boxes
  1135. A check box can be on [X] or off [ ].
  1136. Toggle the check box with one of these
  1137. procedures:
  1138.  
  1139.   1. Click the check box.
  1140.   2. Press Alt+ the shortcut key.
  1141. ; -----------------------------------------
  1142. <optbuttons>
  1143. [<<]<checkboxes>
  1144. [>>]<editboxes>
  1145. Option Buttons
  1146. Option buttons are in groups of 2 or
  1147. more. One option button in a group
  1148. is on () and the others are off ( ).
  1149. Select the option button with one of
  1150. these procedures:
  1151.  
  1152.   1. Click the option button.
  1153.   2. Press Alt+ the shortcut key.
  1154. ; -----------------------------------------
  1155. <editboxes>
  1156. [<<]<optbuttons>
  1157. [>>]<listboxes>
  1158. Edit Boxes
  1159.  
  1160.      ======== Text needed =========
  1161.  
  1162. ; -----------------------------------------
  1163. <listboxes>
  1164. [<<]<editboxes>
  1165. [>>]<MultiSel>
  1166. List Boxes
  1167.  
  1168.      ======== Text needed =========
  1169.  
  1170. ; -----------------------------------------
  1171. <MultiSel>
  1172. [<<]<listboxes>
  1173. Multiple-Selection Listboxes
  1174.  
  1175.      ======== Text needed =========
  1176.  
  1177. ; -----------------------------------------
  1178. <FileOpen>
  1179. The File Open Dialog Box
  1180.  
  1181.      ======== Text needed =========
  1182.  
  1183. ; -----------------------------------------
  1184. <SaveAs>
  1185. The Save As Dialog Box
  1186.  
  1187.      ======== Text needed =========
  1188.  
  1189. ; -----------------------------------------
  1190. <SearchText>
  1191. The Search Text Dialog Box
  1192.  
  1193.      ======== Text needed =========
  1194.  
  1195. ; -----------------------------------------
  1196. <ReplaceText>
  1197. The Replace Text Dialog Box
  1198.  
  1199.      ======== Text needed =========
  1200.  
  1201. ; -----------------------------------------
  1202. <MsgBox>
  1203. The MsgBox Dialog Box
  1204.  
  1205.      ======== Text needed =========
  1206.  
  1207. ; -----------------------------------------
  1208. <Display?GA>
  1209. The Display Dialog Box
  1210.  
  1211.      ======== Text needed =========
  1212.  
  1213.     [..Title]<ID_TITLE>
  1214.     [..Border]<ID_BORDER>
  1215.     [..Status Bar]<ID_STATUSBAR>
  1216.     [..Texture]<ID_TEXTURE>
  1217.  
  1218.     [..Color]<ID_COLOR>
  1219.     [..Mono]<ID_MONO>
  1220.     [..Reverse]<ID_REVERSE>
  1221.  
  1222. ; -----------------------------------------
  1223. <TabStops>
  1224. The Editor Tab Stops Dialog Box
  1225.  
  1226.      ======== Text needed =========
  1227.  
  1228. ; -----------------------------------------
  1229. <Windows>
  1230. The Windows Dialog Box
  1231.  
  1232.      ======== Text needed =========
  1233.  
  1234. ; -----------------------------------------
  1235. <Log>
  1236. The Log Message Dialog Box
  1237.  
  1238.      ======== Text needed =========
  1239.  
  1240. ; -----------------------------------------
  1241. ;
  1242. ;  Following are keyword reference definition windows
  1243. ;
  1244. ; -----------------------------------------
  1245. <inactive>
  1246. An inactive menu command is one that is, for
  1247. the moment, not available. The command becomes
  1248. active at another time when conditions within
  1249. the program require or permit its use.
  1250. ; -----------------------------------------
  1251. <shortcut>
  1252. Function keys are key combinations that
  1253. you can press to execute a menu command
  1254. without selecting the pull-down menu 
  1255. itself. Not all menu commands have 
  1256. function keys. The most frequently used 
  1257. operations do.
  1258. ; -----------------------------------------
  1259. <logging>
  1260. The message log is a debug tool. You should
  1261. delete it from the system by turning off the
  1262. INCLUDE_LOGGING global definition in dflat.h.
  1263. You should then eliminate references to it in
  1264. the MEMOPAD.TXT help database.
  1265. ; -----------------------------------------
  1266. <MoreWins>
  1267. A menu can have only so many selections.
  1268. The length of the screen is the limiting
  1269. factor. The CUA standard defines nine
  1270. windows as the maximum number of windows
  1271. that the Window menu can display. The 
  1272. Windows menu has the More Windows command 
  1273. to provide a way for you to choose from
  1274. the rest of the document windows.
  1275. ; -----------------------------------------
  1276. <API>
  1277. Applications Program Interface (API):
  1278. The functions, messages, macros, and 
  1279. data structures that a programmer 
  1280. uses to interface with the processes 
  1281. of a function library.
  1282. ; -----------------------------------------
  1283. <Block>
  1284. Marking Text Blocks
  1285. Marked text blocks affect the operation of these
  1286. commands:
  1287.  
  1288.     [..Cut]<ID_CUT>
  1289.     [..Copy]<ID_COPY>
  1290.     [..Paste]<ID_PASTE>
  1291.     [..Clear]<ID_CLEAR>
  1292.     [..Delete]<ID_DELETETEXT>
  1293.     [..Paragraph]<ID_PARAGRAPH>
  1294.  
  1295. Mark a text block by using one of these operations:
  1296.  
  1297.    Keyboard:
  1298.    ---------
  1299.    Hold the Shift key down and move the
  1300.    keyboard cursor. The block will be marked in
  1301.    reverse video.
  1302.  
  1303.    To clear the marked block, release the Shift 
  1304.    key and press any text entry or cursor movement
  1305.    key.
  1306.  
  1307.    Mouse:
  1308.    ------
  1309.    Click on the first or last character of the 
  1310.    block. Hold the mouse button down and move 
  1311.    the mouse cursor around. The marked block
  1312.    will follow the mouse cursor.
  1313.  
  1314.    To clear the marked block, release the mouse
  1315.    cursor and click anywhere.
  1316.  
  1317. ; -----------------------------------------
  1318. <Clipboard>
  1319. The Clipboard
  1320. The Clipboard is a scratchpad where you can save
  1321. text that can be pasted into a different location
  1322. in the same or another document. You save text with
  1323. the [..Copy]<ID_COPY> and [..Cut]<ID_CUT> commands, and you paste text into
  1324. from the Clipboard into a document with the [..Paste]<ID_PASTE>
  1325. command. 
  1326. ; -----------------------------------------
  1327. <toggle>
  1328. A toggle command is one that is
  1329. either on or off. When it is on,
  1330. its command on the menu is preceded
  1331. by a check mark (√).
  1332. <end>
  1333.